home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #2 / Monster Media No. 2 (Monster Media)(1994).ISO / prog_pas / sk210f.zip / WHAT'S.NEW < prev   
Text File  |  1994-05-24  |  4KB  |  111 lines

  1.                            THE SKYHAWK DEVELOPER'S KIT
  2.  
  3.                                  REVISION HISTORY
  4.  
  5.                                         by
  6.  
  7.                                    Bill Madison
  8.  
  9.                         W. G. Madison and Associates, Ltd.
  10.                                13819 Shavano Downs
  11.                             San Antonio, TX 78230-5811
  12.                                   (210)492-2776
  13.                                   CIS 73240,342
  14.                      Internet bill.madison@lchance.sat.tx.us
  15.  
  16.                     Copyright 1992, 1994 Madison & Associates
  17.                                All Rights Reserved
  18.  
  19.  
  20.  
  21.                       DIFFERENCES BETWEEN REL. 2.00 AND 2.10
  22.  
  23.         Release 2.10 is essentially a maintenance release. The following
  24.         changes have been made:
  25.  
  26.            1.  Compilation for Dos Protected Mode operation is now possi-
  27.                ble, including compilation of the test suite. See the .MAK
  28.                file.
  29.  
  30.            2.  Compiler selection has been extended to include TP7 and
  31.                BP7. See the .MAK file.
  32.  
  33.            3.  The .MAK file now includes an option to include/exclude
  34.                compilation of the test suite.
  35.  
  36.            4.  In this and earlier releases, the numeric type EXTENDED
  37.                was redefined to REAL if the directive Gen87 was disabled
  38.                in the ShDefine.INC file. However, now a generic real type
  39.                FLOAT is defined which can be used, as implemented by the
  40.                following directives in the appropriate source files:
  41.  
  42.                     type
  43.                     {$IFNDEF Gen87}
  44.                       extended        = real;
  45.                       Float           = real;
  46.                     {$ELSE}
  47.                       Float           = extended;
  48.                     {$ENDIF}
  49.  
  50.                This dual definition is to provide a transition prior to
  51.                the next major release, currently scheduled for late
  52.                summer of 1994. At that time, the redefinition of type
  53.                EXTENDED will be removed.
  54.  
  55.            5.  A minor bug in ShCmdLin has been repaired. This bug caused
  56.                the first two switches to be improperly parsed if the
  57.                first switch had no associated explicit value.
  58.  
  59.  
  60.  
  61.  
  62.                      DIFFERENCES BETWEEN REL. 1-A AND REL. 2
  63.  
  64.            1.  A new unit, ShFinanc.PAS, has been added to permit various
  65.                financial calculations.
  66.  
  67.            2.  All of the tests have been brought together under a single
  68.                menu-driven umbrella.
  69.  
  70.            3.  Error processing have been rewritten to provide greatly
  71.                improved error control.
  72.  
  73.  
  74.  
  75.  
  76.                      DIFFERENCES BETWEEN REL. 1 AND REL. 1-A
  77.  
  78.            1.  Minor bug repair in TESTCMDL.PAS. The output buffer was
  79.                not being flushed when console output was redirected.
  80.  
  81.                Files affected:
  82.                   TESTCMDL.PAS
  83.                   TESTCMDL.EXE
  84.  
  85.            2.  Certain routines and types were not interfaced as intended
  86.                or as indicated in the documentation.
  87.  
  88.                Files affected:
  89.                   SHCMDLIN.PAS
  90.                   SHLIST.PAS
  91.                   SHLNGSTR.PAS
  92.                   SHUTILPK.PAS
  93.                   SKYHAWK.DOC
  94.                           Chapter 2 - ShCmdLin
  95.                           Chapter 8 - ShLngStr
  96.                           Chapter 9 - ShUtilPk
  97.                           Index
  98.  
  99.                       The corrected chapters and index are in file
  100.                UPDATE.DOC in the file SHDELTA1.ZIP. The complete
  101.                corrected documentation is in the file SKYHAWK.DOC in the
  102.                file SHDK-1A.ZIP.
  103.                   TESTBETW.EXE
  104.                   TESTDATE.EXE
  105.                   TESTLIST.EXE
  106.                   TESTUTIL.EXE
  107.  
  108.  
  109.                                                             5/24/94 2:4pm
  110.  
  111.